|
|
|
|
OnMouseCaptureChanged Method, SftTabs Class |
Raises the MouseCaptureChanged event.
Syntax SftTabs Class (Softelvdm.SftTabsNET)
VB |
Protected Overrides Sub OnMouseCaptureChanged( ByVal e As EventArgs ) |
C# |
protected override void OnMouseCaptureChanged( EventArgs e ); |
C++ |
protected: virtual void OnMouseCaptureChanged( EventArgs^ e ); |
e
An EventArgs that contains the event data.
Comments
The OnMouseCaptureChanged method raises the MouseCaptureChanged event.
Raising an event invokes the event handler through a delegate.
The OnMouseCaptureChanged method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnMouseCaptureChanged in a derived class, make sure to call the base class's OnMouseCaptureChanged method so that registered delegates receive the event.